MouseEvent

This cancellable event is called when a mouse action is performed.

If cancelled, the event's actions will not affect the game.

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
val button: Int

The mouse button the event is about.

Link copied to clipboard

Whether the mouse button is being pressed (true) or released (false).

Link copied to clipboard
@get:JvmName(name = "isCancelled")
var cancelled: Boolean

This field defines whether the event is cancelled or not. Any mod can cancel and un-cancel an event. What an event does when cancelled is event-specific, and noted in that event's documentation.

Link copied to clipboard
@get:JvmName(name = "getDWheel")
val dwheel: Int

The amount the mouse's scroll wheel has scrolled, negative if scrolling backwards.

Link copied to clipboard
@get:JvmName(name = "getDX")
val dx: Int

The X distance the mouse has travelled.

Link copied to clipboard
@get:JvmName(name = "getDY")
val dy: Int

The Y distance the mouse has travelled.

Link copied to clipboard

The nanosecond that this mouse event was created. Obtained from the mouse event's Mouse.getEventNanoseconds(), refer to the LWJGL2 Javadoc for more information about it.

Link copied to clipboard
val x: Int

The mouse's X position on the screen.

Link copied to clipboard
val y: Int

The mouse's Y position on the screen.